home *** CD-ROM | disk | FTP | other *** search
/ 3D World 76 / 3DWI76.iso / pc / Shared.cst / 00001_Script_open folder next >
Text File  |  2006-02-08  |  536b  |  19 lines

  1. property pFolderPC,pFolderMAC
  2.  
  3. on mouseup me
  4.   if the platform contains "MAC" then
  5.     ok=baopenfile(the moviepath &pFolderMAC, "")
  6.     put the moviepath&pFolderMAC
  7.   else
  8.     ok=baopenfile(the moviePath & pFolderPC, "") 
  9.     put the moviepath&pFolderPC
  10.   end if
  11.   
  12. end
  13.  
  14. on getpropertydescriptionlist me
  15.   mat = [:]
  16.   addprop mat, #pFolderPC, [#comment:"the folderlink PC", #format: #string, #default: void]
  17.   addprop mat, #pFolderMAC, [#comment:"the folderlink MAC", #format: #string, #default: void]
  18.   return mat
  19. end